Version

NullableRoutedPropertyChangedEventHandler<T> Delegate

Delegate used to represent a method that will handle a property change involving a nullable property.
Syntax
'Declaration
 
Public Delegate Sub NullableRoutedPropertyChangedEventHandler(Of T As {New, Struct})( _
   ByVal sender As Object, _
   ByVal e As NullableRoutedPropertyChangedEventArgs(Of T) _
) 
public delegate void NullableRoutedPropertyChangedEventHandler<T>( 
   object sender,
   NullableRoutedPropertyChangedEventArgs<T> e
)
where T: new(), struct

Parameters

sender
The object for which the event is being raised.
e
The event arguments that provides additional information about the property change.

Type Parameters

T
The underlying type of property value for the event
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also